home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 3 / Amiga Tools 3.iso / programming / triton / developer / include / proto / triton.h
Encoding:
C/C++ Source or Header  |  1995-08-25  |  398 b   |  24 lines

  1. #ifndef PROTO_TRITON_H
  2. #define PROTO_TRITON_H
  3.  
  4. #ifdef __GNUC__
  5.  
  6. #include <clib/triton_protos.h>
  7. #if defined(__OPTIMIZE__) && !defined(__NOINLINES__)
  8. #include <inline/triton.h>
  9. #endif
  10. #ifndef __NOLIBBASE__
  11. extern struct Library *TritonBase;
  12. #endif
  13.  
  14. #else
  15.  
  16. #include <exec/types.h>
  17. extern struct Library *TritonBase;
  18. #include <clib/triton_protos.h>
  19. #include <pragmas/triton_pragmas.h>
  20.  
  21. #endif
  22.  
  23. #endif
  24.